home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / diffs / gzip-124 / msdos / makefile.djg
Encoding:
Makefile  |  1994-08-05  |  1.2 KB  |  57 lines

  1. *** orig/gzip-124/msdos/makefile.djg    Sun Aug 29 17:32:16 1993
  2. --- src/gzip-124/msdos/makefile.djg    Sun Dec  5 02:09:14 1993
  3. ***************
  4. *** 42,48 ****
  5.   
  6.   SEDCMD = 1d
  7.   
  8. ! CFLAGS = -O2 -finline-functions -fomit-frame-pointer
  9.   LDFLAGS = -s
  10.   
  11.   X=.exe
  12. --- 42,48 ----
  13.   
  14.   SEDCMD = 1d
  15.   
  16. ! CFLAGS = -O2 -finline-functions
  17.   LDFLAGS = -s
  18.   
  19.   X=.exe
  20. ***************
  21. *** 66,73 ****
  22.   
  23.   #### End of system configuration section. ####
  24.   
  25. - SHELL = /bin/sh
  26.   LOADLIBES = $(LIBS)
  27.   
  28.   TAR = tar
  29. --- 66,71 ----
  30. ***************
  31. *** 165,177 ****
  32.   # Actual build-related targets
  33.   
  34.   gzip$X:    gzip
  35. !     aout2exe gzip
  36.   
  37.   gzip:    $(OBJ1) $(OBJ2)
  38. !         echo $(OBJ1) > gzip.rsp
  39. !         echo $(OBJ2) $(LIBS) >> gzip.rsp
  40. !     $(CC) $(LDFLAGS) -o $@ @gzip.rsp
  41. !         del gzip.rsp
  42.   
  43.   gzip$O zip$O deflate$O trees$O bits$O unzip$O inflate$O: gzip.h tailor.h
  44.   util$O lzw$O unlzw$O unpack$O unlzh$O crypt$O: gzip.h tailor.h
  45. --- 163,172 ----
  46.   # Actual build-related targets
  47.   
  48.   gzip$X:    gzip
  49. !     coff2exe gzip
  50.   
  51.   gzip:    $(OBJ1) $(OBJ2)
  52. !     $(CC) $(LDFLAGS) -o $@ $(OBJ1) $(OBJ2)
  53.   
  54.   gzip$O zip$O deflate$O trees$O bits$O unzip$O inflate$O: gzip.h tailor.h
  55.   util$O lzw$O unlzw$O unpack$O unlzh$O crypt$O: gzip.h tailor.h
  56.